home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / clipper / slsw.zip / PLCOMP.BAT < prev    next >
DOS Batch File  |  1990-04-12  |  473b  |  26 lines

  1. echo off
  2. cls
  3. if x%1x==xx goto usage
  4. echo Compiling %1 -  CLIPPER.EXE assumed to be on the path.
  5. echo.
  6. echo.
  7. clipper %1
  8. echo.
  9. echo.
  10. echo  PLinking %1  -  CLIPPER.LIB, EXTEND.LIB , SUPER.LIB
  11. echo                  assumed to be in current directory.
  12. echo                  PLINK86.EXE assumed to be in path.
  13. echo.
  14. echo.
  15. PLINK86 fi %1 lib clipper,super,extend
  16. goto end
  17. :usage
  18. echo.
  19. echo.
  20. echo.
  21. echo USAGE      PLCOMP   [prg name]
  22. echo.
  23. echo.
  24. echo.
  25. :end
  26.